home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / milia.dxr / 00033.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  1.4 KB  |  58 lines

  1. on exitFrame
  2.   if rollOver(2) then
  3.     set the visible of sprite 2 to 1
  4.   else
  5.     set the visible of sprite 2 to 0
  6.   end if
  7.   if rollOver(3) then
  8.     set the visible of sprite 3 to 1
  9.   else
  10.     set the visible of sprite 3 to 0
  11.   end if
  12.   if rollOver(4) then
  13.     set the visible of sprite 4 to 1
  14.   else
  15.     set the visible of sprite 4 to 0
  16.   end if
  17.   if rollOver(5) then
  18.     set the visible of sprite 5 to 1
  19.   else
  20.     set the visible of sprite 5 to 0
  21.   end if
  22.   go(the frame)
  23. end
  24.  
  25. on mouseUp
  26.   if rollOver(2) then
  27.     set the visible of sprite 2 to 1
  28.     set the visible of sprite 3 to 1
  29.     set the visible of sprite 4 to 1
  30.     set the visible of sprite 5 to 1
  31.     go("Russo")
  32.   else
  33.     if rollOver(3) then
  34.       set the visible of sprite 2 to 1
  35.       set the visible of sprite 3 to 1
  36.       set the visible of sprite 4 to 1
  37.       set the visible of sprite 5 to 1
  38.       go("Penk1")
  39.     else
  40.       if rollOver(4) then
  41.         set the visible of sprite 2 to 1
  42.         set the visible of sprite 3 to 1
  43.         set the visible of sprite 4 to 1
  44.         set the visible of sprite 5 to 1
  45.         go("Duo")
  46.       else
  47.         if rollOver(5) then
  48.           set the visible of sprite 2 to 1
  49.           set the visible of sprite 3 to 1
  50.           set the visible of sprite 4 to 1
  51.           set the visible of sprite 5 to 1
  52.           go("Bebe")
  53.         end if
  54.       end if
  55.     end if
  56.   end if
  57. end
  58.